home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo *
- echo *
- echo EZX-WRITE Version 2.3 Installation Program
- echo *
- echo *
- if %1.==. goto usage
- goto copyfiles
- :usage
- echo Usage: INSTALL [destination]
- echo *
- echo where [destination] is the drive and/or directory you wish to use for
- echo your EZX-WRITE program files. INSTALL will copy all the EZX-WRITE files to
- echo [destination].
- echo *
- echo Example: INSTALL C:\EZXWRITE
- echo will copy all the EZX-WRITE program files to the C:\EZXWRITE subdirectory.
- echo * The "EZXWRITE" subdirectory must exist. eg. MD C:\EZXWRITE (enter)
- echo *
- echo If your computer only has one disk drive, type INSTALL B:, and follow
- echo the prompts to do a single drive copy. You will be prompted to insert
- echo a destination diskette into drive A:, then the program diskette, etc.
- echo until all the files are copied.
- goto error
- :copyfiles
- echo
- echo About to copy EZX-WRITE program files to %1
- echo
- echo If this is not OK, press Ctrl-Break, otherwise,
- pause
- echo
- echo Copying files, please wait...
- echo
- echo Copying printer drivers
- copy *.PRD %1
- echo
- echo Copying print driver utility
- copy MAKEPRD.* %1
- echo
- echo Copying EZX-WRITE program files and documentation
- copy EZXW.* %1
- rem copy *.doc %1
- echo
- echo Copying WHATSNEW.DOC file
- copy WHATSNEW.DOC %1
- echo
- echo Copying README.DOC file
- copy README.DOC %1
- echo
- echo Program files copied to %1
- echo
- echo To start the program from %1, just type EZXW and press [Enter].
- :error
-